home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / pcwiz01.arc / CHDIR.INS < prev    next >
Text File  |  1991-08-22  |  1KB  |  39 lines

  1. CHDIR    Used for moving from one directory on a hard
  2.          disk or diskette to another. The CHDIR (Change
  3.          Directory) command is often abbreviated to CD.
  4.  
  5. Format:  CHDIR (or CD) [D:Path]
  6.  
  7.  
  8. Example:       CHDIR \     -or-  CD \     -or-  CD\
  9.  
  10.    Changes the directory that you are currently working
  11.    in to the ROOT directory of the CURRENT drive. (Does
  12.    NOT change drive location.)
  13.  
  14. Example:       CHDIR \123  -or-  CD \123   -or-  CD\123
  15.  
  16.    Changes the directory that you are currently working
  17.    in to the \123 sub-directory on the CURRENT drive.
  18.  
  19. Example:       CHDIR \123\DATA    -or-   CD\123\DATA
  20.  
  21.    Changes the directory that you are currently working
  22.    in to the \123\DATA sub-directory.
  23.  
  24. Example:       CHDIR ..      -or-      CD..
  25.  
  26.    Changes the directory that you are currently working
  27.    in to its immediate PARENT directory. (e.g., If the
  28.    CURRENT directory is D:\123\DATA, this command will
  29.    move you to the D:\123 directory. If you issued the
  30.    command again it would move you to the D:\ (root)
  31.    directory, which is the PARENT of D:\123 directory.)
  32.  
  33. [*]  DOS does not allow you to change BOTH the drive
  34.    and the directory using a single command. To change
  35.    drives simply enter the letter designator for the
  36.    drive you want to access followed by a ":". (e.g.,
  37.    C:, D:, E:, etc and press <ENTER>.) Then issue the
  38.    appropriate CHDIR command for the CURRENT drive.
  39.